Leetcode 7. 整数反转

7. 整数反转 思路:这题比较简单,你可以用栈,用字符串等等,但最好还是用数学,需要注意溢出的情况。 fun reverse(x: Int): Int { var … 继续阅读 Leetcode 7. 整数反转